home *** CD-ROM | disk | FTP | other *** search
- global TheIN, TheOUT, DoThis
-
- on SwitchSound
- if the soundLevel = 0 then
- set the soundLevel to 7
- set the castNum of sprite 7 to the number of cast "sound on out"
- else
- set the soundLevel to 0
- set the castNum of sprite 7 to the number of cast "sound off out"
- end if
- end
-
- on buttonswitch whichSprite
- set Doit to 1
- set the castNum of sprite whichSprite to the number of cast TheIN
- updateStage()
- repeat while the stillDown
- if rollOver(whichSprite) then
- set the castNum of sprite whichSprite to the number of cast TheIN
- updateStage()
- set Doit to 1
- next repeat
- end if
- set the castNum of sprite whichSprite to the number of cast TheOUT
- updateStage()
- set Doit to 0
- end repeat
- if Doit = 1 then
- SwitchSound()
- updateStage()
- else
- exit
- end if
- end
-
- on ButtonSwitch2 whichSprite
- set Doit to 1
- set the castNum of sprite whichSprite to the number of cast TheIN
- updateStage()
- repeat while the stillDown
- if rollOver(whichSprite) then
- set the castNum of sprite whichSprite to the number of cast TheIN
- updateStage()
- set Doit to 1
- next repeat
- end if
- set the castNum of sprite whichSprite to the number of cast TheOUT
- updateStage()
- set Doit to 0
- end repeat
- if Doit = 1 then
- updateStage()
- else
- exit
- end if
- end
-
- on ButtonSwitch3 whichSprite
- global GoBackTo
- set Doit to 1
- set the castNum of sprite whichSprite to the number of cast TheIN
- updateStage()
- repeat while the stillDown
- if rollOver(whichSprite) then
- set the castNum of sprite whichSprite to the number of cast TheIN
- updateStage()
- set Doit to 1
- next repeat
- end if
- set the castNum of sprite whichSprite to the number of cast TheOUT
- updateStage()
- set Doit to 0
- end repeat
- if Doit = 1 then
- go(GoBackTo)
- updateStage()
- else
- exit
- end if
- end
-
- on ButtonSwitch4 whichSprite
- set Doit to 1
- set the castNum of sprite whichSprite to the number of cast TheIN
- updateStage()
- repeat while the stillDown
- if rollOver(whichSprite) then
- set the castNum of sprite whichSprite to the number of cast TheIN
- updateStage()
- set Doit to 1
- next repeat
- end if
- set the castNum of sprite whichSprite to the number of cast TheOUT
- updateStage()
- set Doit to 0
- end repeat
- if Doit = 1 then
- AllPuppetsOff()
- go("panic")
- updateStage()
- else
- exit
- end if
- end
-